home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / utils / file / symlinks.0 / symlinks / symlinks-1.0 / Makefile next >
Encoding:
Makefile  |  1994-11-27  |  304 b   |  14 lines

  1. # Makefile for symlinks
  2.  
  3. all: symlinks
  4.  
  5. symlinks: symlinks.c
  6.     gcc -Wall -Wstrict-prototypes -O2 -N -s -o symlinks symlinks.c
  7.  
  8. install: all symlinks.8
  9.     install -m 755 -o root -g root symlinks /usr/local/bin
  10.     install -m 644 -o root -g root symlinks.8 /usr/local/man/man8
  11.  
  12. clean:
  13.     rm -f symlinks *.o core
  14.